home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Network Tools 2002
/
NextStepPublishing-TotalNetworkTools2002-Win95.iso
/
Archive
/
Web Server
/
PHP.EXE
/
pear
/
DB
/
tests
/
mysql
/
001.phpt
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-12-13
|
311 b
|
18 lines
--TEST--
DB_mysql::connect test
--SKIPIF--
<?php require "skipif.inc"; ?>
--FILE--
<?php
require "connect.inc";
if (is_object($dbh)) {
print "\$dbh is an object\n";
}
if (is_resource($dbh->connection)) {
print "\$dbh is connected\n";
}
?>
--EXPECT--
$dbh is an object
$dbh is connected